Test your skills through the online practice test: Microsoft .NET Quiz Online Practice Test

Related differences

Ques 46. string is an alias for what?

System.String

Is it helpful? Add Comment View Comments
 

Ques 47. Is string Unicode, ASCII, or something else?

Unicode

Is it helpful? Add Comment View Comments
 

Ques 48. Strings are immutable, what does this mean?

Any changes to that string are in fact copies.

Is it helpful? Add Comment View Comments
 

Ques 49. Name a few string properties.

trim, tolower, toupper, concat, copy, insert, equals, compare.

Is it helpful? Add Comment View Comments
 

Ques 50. What is boxing and unboxing?

Converting a value type (stack->heap) to a reference type (heap->stack), and viseversa.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users: